home *** CD-ROM | disk | FTP | other *** search
/ Wonky Flux Batch 2019 02 / Wonky_Flux_Batch_2019-02.zip / Wonky Flux Batch 2019-02 / 095 - AppleWorks Mailing Program - Automated Form Letters.dsk / Interface Cards.txt < prev    next >
Text File  |  2019-02-17  |  2KB  |  36 lines

  1. Interface Cards
  2.  
  3. AMP was designed to work with Apple printer cards.  If you have a Grappler, Pkaso, or other card, the letters printed by AMP may not look correct (i.e. lines are truncated and printed on separate lines).
  4.  
  5. To fix this problem, you have to change one line of BASIC code so that AMP will run correctly with your card.
  6.  
  7. Here's what to do:
  8.  
  9. o Boot your backup copy of the AMP disk and press the ESCAPE key twice.  You should now see a square bracket:  ]
  10.  
  11. o Type 
  12.  
  13.   LIST 1705
  14.  
  15.   and press RETURN.  You will see a line of BASIC code that looks like this:
  16.  
  17.   1705 PRINT CHR$ (9);"80N";
  18.  
  19. o Determine the correct replacement line for your card from the table below.  Then, with your cursor next to the square bracket, type in the correct line of code EXACTLY as shown below.  
  20.  
  21.   If your card does not appear, you can experiment with the codes listed here since your card may be compatible with one of these.  Otherwise, consult your interface card's manual for the code your card requires to turn off echoing.  Then, put it in the same form as line 1705 listed above.  It probably begins with a CTRL-I (represented by the CHR$ (9) part of line 1705) and ends with a number and letter combination (similar to the 80N part of line 1705).  
  22.  
  23.   For this card               Type in the following and press RETURN
  24.   -------------               --------------------------------------
  25.   Apple Parallel or Serial    1705 PRINT CHR$ (9);"80N";
  26.   Grappler and compatibles    1705 PRINT CHR$ (9);"0N";
  27.   PKASO                       1705 PRINT CHR$ (9);"0N";
  28.   Tymac or Microtek           1705 PRINT CHR$ (9);"99N";
  29.   Practical Peripherals       1705 PRINT CHR$ (9);"N";
  30.  
  31. o Save this file to disk by typing, "SAVE STARTUP".
  32.  
  33. o Reboot.
  34.  
  35. You should now be able to use AMP normally.  
  36.